home *** CD-ROM | disk | FTP | other *** search
- (*=====================================================================
- Project: WinCubVCL.bdsproj
-
- File: WinCubVCL.bdsproj
-
- Summary:
- WinCubVCL is a Delphi implementation of the dotNETCub
- project, which is a simple game for your fun.
- On other hand it could demonstrate creating
- VCL-objects in run time and using them.
-
- ---------------------------------------------------------------------
- This file is submitted by:
-
- endresy@axelero.hu
- Endre I. Simay,
- Hungary
-
-
- THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
- KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
- IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
- PARTICULAR PURPOSE.
- =====================================================================*)
-
- program WincubVCL;
-
- {%DotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Windows.Forms.dll'}
- {%DotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.dll'}
- {%DotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Data.dll'}
- {%DotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.XML.dll'}
-
- uses
- SysUtils,
- Forms,
- WincubVCL_ in 'WincubVCL_.pas' {WincubVCL_.TForm1: Borland.Vcl.Forms.TForm};
-
- begin
- Application.Initialize;
- Application.CreateForm(TForm1, Form1);
- Application.Run;
- end.
-